home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / fractal / kaos.lha / modellib / malloc_mixed_init.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-16  |  340 b   |  14 lines

  1. /*
  2. ### allocate memory dynamically after selecting or loading a new model ###
  3. */
  4.  
  5. void malloc_mixed_init()
  6. {
  7.     double *dvector(),**dmatrix();
  8.     extern int full_dim,param_dim,aux_max;
  9.     extern double **aux_x_max,**aux_x_min;
  10.  
  11.     aux_x_min = dmatrix(0,full_dim+param_dim-1,0,aux_max-1);
  12.     aux_x_max = dmatrix(0,full_dim+param_dim-1,0,aux_max-1);
  13. }
  14.